home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / tttdem51.zip / DIRDEM1.PAS < prev    next >
Pascal/Delphi Source File  |  1989-01-31  |  306b  |  16 lines

  1. Program DirTTT5_demo_1;
  2.  
  3. {IMPORTANT NOTE: set Options Compiler Conditional defines to
  4.                       DIRFULL
  5.  and select compile build
  6. }
  7. uses CRT,DIRTTT5;
  8.  
  9. var
  10.   Chosen_File : string;
  11.   ErrCode : integer;
  12.  
  13. begin
  14.     clrscr;
  15.     Chosen_File := Display_Directory('*.Pas',Errcode);
  16. end.